From 0cc42fa42e447a5926fdc45ddc1e61b75b1c04ed Mon Sep 17 00:00:00 2001 From: parkrrrr Date: Thu, 24 May 2007 13:18:28 +0000 Subject: [PATCH] Google Maps changed to contain invalid XHTML, again. This time, it was tags of the form (note lack of whitespace between attributes.) --- google.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/google.c b/google.c index 1ad9aef86..0fe9e260b 100644 --- a/google.c +++ b/google.c @@ -417,6 +417,10 @@ google_read(void) else if ( !strncmp( from, "\\042", 4)) { *to++ = '"'; from += 4; + + if ( *(to-2) != '=' ) { + *to++ = ' '; + } } else if ( !strncmp( from, "\\'", 2)) { *to++ = '\''; -- 2.30.2